'Declaration
Public Overloads Function CombineToPDF( _ ByVal InputFiles As IEnumerable(Of String), _ ByVal DestFile As String, _ Optional ByVal Conformance As PdfConformance _ ) As GdPictureStatus
public GdPictureStatus CombineToPDF( IEnumerable<string> InputFiles, string DestFile, PdfConformance Conformance )
public function CombineToPDF( InputFiles: IEnumerable; DestFile: String; Conformance: PdfConformance ): GdPictureStatus;
public function CombineToPDF( InputFiles : IEnumerable, DestFile : String, Conformance : PdfConformance ) : GdPictureStatus;
public: GdPictureStatus CombineToPDF( IEnumerable<string*>* InputFiles, string* DestFile, PdfConformance Conformance )
public: GdPictureStatus CombineToPDF( IEnumerable<String^>^ InputFiles, String^ DestFile, PdfConformance Conformance )
Parameters
- InputFiles
- An array of strings defining the file paths of all the documents you want to combine.
- DestFile
- The file path where the destination file will be saved. If the specified file already exists, it will be overwritten.
- Conformance
- A member of the PdfConformance enumeration. Specifies the required PDF version or conformance to the PDF or PDF/A standard of the resulting PDF document.
Return Value
A member of the GdPictureStatus enumeration. If the method has been successfully followed, then the return value is GdPictureStatus.OK.
We strongly recommend always checking this status first.